/* ========== GLOBAL RESET ========== */
* {
      margin: 0;
      padding: 0;
      text-decoration: none !important;
      list-style-type: none !important;
      box-sizing: border-box;
      /* overflow-x: hidden !important; */
}

body {
      font-family: "Poppins", sans-serif !important;
}

/* ========== NAVBAR BASE ========== */
.navbar-custom {
      width: 100%;
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      padding: 12px 0;
}

.navbar-cus {
      width: 80%;
      margin: auto;
}

.logo img {
      width: 150px;
}

/* ========== NAV LINKS ========== */
.nav-links {
      list-style: none;
      gap: 1.5em;
      display: flex;
      align-items: center;
      justify-content: center;
}

.nav-links li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.3s ease;
}

.nav-links li a:hover {
      color: #981D87;
      border-bottom: 3px solid #981D87;
}

/* ========== LOGIN BUTTON ========== */
.login-btn {
      background-color: #981D87;
      color: white;
      padding: 8px 18px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
}

.login2-btn {
      background-color: #981D87;
      color: white;
      padding: 8px 18px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      display: none;
}

.login3-btn {
      background-color: #981D87;
      color: white;
      padding: 8px 14px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      display: none;
}
@media (max-width:1400px) {
   .login3-btn{
      padding: 8px 10px !important;
      font-size: 14pxm !important;
   }   
}


.login-btn:hover {
      background-color: #7a176b;
}

/* ========== HAMBURGER BUTTON ========== */
.menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: white;
      border: none;
      cursor: pointer;
      width: 2em;

}

.bar {
      width: 25px;
      height: 3px;
      background-color: #333;
      transition: all 0.3s ease;

}

/* ========== RESPONSIVE STYLING ========== */
@media (max-width:1400px) {
      .navbar-cus {
            width: 90%;
      }

      .nav-links {
            gap: 1em !important;
      }
}

@media (max-width:1200px) {
      .login-btn {
            display: none !important;
      }

      .login3-btn {
            display: block;
      }

      .nav-links {
            gap: .5em;
      }
}



@media (max-width: 992px) {
      .logo {
            width: 2em !important;
      }

      .login3-btn {
            display: none;
      }

      /* Show hamburger on mobile */
      .menu-toggle {
            display: flex;
            z-index: 10;
      }

      /* Hide nav by default */
      .nav-links {
            position: absolute;
            top: 75px;
            left: 0;
            width: 100%;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            gap: 1.5em;
            padding: 2em 0;
            background-color: #fff;
            border-top: 1px solid #eee;
            display: none !important;
            z-index: 6;
            /* hide by default */
            transition: all 0.3s ease;
      }

      /* Show nav when active */
      .nav-links.active {
            display: flex !important;
      }

      /* Hide login button on mobile */
      .login2-btn {
            display: block !important;
      }
}

/* ========== HAMBURGER ANIMATION ========== */
.menu-toggle.open .bar:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
      background-color: #981D87;
      color: #981D87;
}

.menu-toggle.open .bar:nth-child(2) {
      opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
      background-color: #981D87;
      color: #981D87;
}




/* HEADER-TWO-STYLING */

.header-2 {
      width: 100%;
      height: 60px;
      background-color: #FAFAFA;
      border: thin solid #33333342;
}

.custom-nav {
      display: flex;
      width: 81%;
      margin: auto;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
}

.menu-list {
      display: flex;
      gap: 2em;
}

/* --- Main Dropdown Item (Title) Styling --- */


.dropdown-item-main {
      position: relative;
}

.dropdown-item-main>a {
      color: #333;
      padding-bottom: 10px;
      display: block;
      text-decoration: none;
}

.dropdown-item-main:hover>a {
      color: purple;
      border-bottom: 3px solid purple;
}

.dropdown-content {
      display: none;
      position: absolute;
      z-index: 4;
      top: 100%;
      left: 0;
      min-width: 250px;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      border-radius: 4px;
}

.dropdown-content li a {
      padding: 8px 15px;
      display: block;
      color: #555;
      white-space: nowrap;
}

.dropdown-content li a:hover {
      background-color: #f5f5f5;
      color: purple;
}

.dropdown-item-main:hover .dropdown-content {
      display: block;
}

.search-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #7a176b;
      border-radius: 50%;
      cursor: pointer;
}

.search-icon {
      color: #ffffff;
      font-size: 20px;
}

@media (max-width:1025px) {
      .header-2 {
            display: none;
      }

      .custom-nav {
            display: none;
      }
}



/* ========CAROUSEL======= */

.hero-slide {
      height: 75vh;
      background: linear-gradient(90deg, #981D87 50%, #000000a7 100%);
}

/* Text area (left side) */
.hero-text {
      max-width: 40%;
}

/* Image styling */
.hero-image {
      width: 50%;
}


/* Slide 5 content wrapper */
.slide-5-content {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 20px;
      width: 100%;
      padding: 50px 100px;
      box-sizing: border-box;
      position: relative;
}

/* Text */
.slide-5-text {
      flex: 1;
      max-width: 600px;
}

/* Headings and paragraph */
.slide-5-text h1 {
      font-size: 3.5rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 20px;
}

.slide-5-text p {
      font-size: 1.15rem;
      color: #555;
      margin-bottom: 30px;
}

/* Button */
.order-card-btn {
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      background-color: #981D87;
      color: #fff !important;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s;
}

.order-card-btn:hover {
      background-color: #7a176b;
}

.order-card-btn i {
      margin-left: 10px;
}

/* Image */
.slide-5-img {
      max-width: 50%;
      height: auto;
      object-fit: contain;
}

.fa-message {
      background-color: #981D87;
      display: flex;
      justify-content: center;
      padding: 15px;
      font-size: 26px;
      color: #fff;
      font-weight: 300;
      border-radius: 50%;
      position: fixed;
      right: 2em;
      top: 25.5em;
      box-shadow: 0 6px 15px rgba(11, 11, 11, 0.15);
}





.headlines {
      width: auto;
      height: 40px;
      background-color: #981D87;
      display: flex;
      align-items: center;
      overflow: hidden;
}

.headlines h5 {
      margin: 0;
      padding: 0 15px;
      flex-shrink: 0;
      color: #fff;
      font-size: 1em;
      height: 100%;
      display: flex;
      align-items: center;
      background-color: #c835b5;
}

.scroll-container {
      flex-grow: 1;
      gap: 3em;
      white-space: nowrap;
      overflow: hidden;
      height: 100%;
      line-height: 40px;
}

.scrolling-content {
      display: inline-block;
      color: white;
      padding-left: 10px;
      font-family: Arial, sans-serif;
      animation: marquee-scroll 35s linear infinite;
}

.headlines:hover .scrolling-content {
      animation-play-state: paused;
}

@keyframes marquee-scroll {
      0% {
            transform: translateX(100%);
      }

      100% {
            transform: translateX(-150%);
      }
}




/* Responsive */
/* ---------- RESPONSIVE DESIGN FIXED VERSION ---------- */

/* 🟢 Tablet (≤992px) */
@media (max-width: 992px) {
      .slide-5-content {
            flex-direction: column;
            text-align: center;
            padding: 30px 40px;
            gap: 1.5rem; /* reduced gap */
            height: auto; /* allow natural height */
      }

      .slide-5-text {
            max-width: 100%;
      }

      .slide-5-text h1 {
            font-size: 2.3rem;
      }

      .slide-5-text p {
            font-size: 1rem;
      }

      .order-card-btn {
            padding: 10px 22px;
            font-size: 0.95rem;
      }

      .slide-5-img,
      .hero-image,
      .slide-6-img,
      .slide-7-img,
      .slide-8-img {
            max-width: 65%;
            margin-top: 10px;
      }

      .hero-slide {
            height: auto !important;
            padding: 40px 20px;
      }

      .hero-text {
            max-width: 80%;
      }

      /* 🖼 Slide 1 + 2 specific fix */
      .slide1,
      .slide-5-content.slide {
            flex-direction: column !important;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            height: auto !important;
            padding: 30px 20px !important;
      }

      .slide1 img,
      .slide-5-content.slide img {
            width: 55% !important;
            height: auto !important;
      }
}

/* 🟠 Mobile (≤576px) */
@media (max-width: 576px) {
      .slide-5-content {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 15px;
            gap: 1rem; /* tighter spacing */
            height: auto;
      }

      .slide-5-text h1 {
            font-size: 1.6rem;
            line-height: 1.3;
      }

      .slide-5-text p {
            font-size: 0.9rem;
      }

      .order-card-btn {
            padding: 8px 18px;
            font-size: 0.85rem;
      }

      .slide-5-img,
      .hero-image,
      .slide-6-img,
      .slide-7-img,
      .slide-8-img {
            width: 80%;
            max-width: 260px;
            margin-top: 5px;
      }

      .hero-slide {
            height: auto !important;
            padding: 25px 15px;
      }

      /* 🖼 Slide 1 + 2 mobile fix */
      .slide1,
      .slide-5-content.slide {
            flex-direction: column !important;
            gap: 0.8rem;
            height: auto !important;
            padding: 20px 10px !important;
      }

      .slide1 img,
      .slide-5-content.slide img {
            width: 70% !important;
            height: auto !important;
      }

      .w-20,
      .w-30 {
            width: 60% !important;
      }
}

.caro-wrapper {
      position: relative;
      z-index: 1;
}


/* ===== CARDS WRAPPER ===== */
.cards-wrapper {
      background-color: #f8f9fa;
}

/* Each card is a flex column */
.cards-wrapper {
      background-color: #F6F6F6;
      height: auto;
      width: 100%;
}

.cards-wrapper .card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: none;
      transition: all 0.1s ease;
      height: 8em;
      text-align: center;
}

/* Text styling */
.cards-wrapper .card p {
      margin: 0;
      font-size: 1rem;
      color: #333333d1;
      font-weight: 300 !important;
}

/* Hover effect */
.cards-wrapper .card:hover {
      background-color: #fff;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      transform: translateY(-12px);
}







/* =============OUR-PRODUCT-SECTION-STYLING=============== */
.collate {
      padding-top: 4em;
      width: 90%;
      margin: auto;
      /* text-align: center; */
}

.sect-3-text {
      margin-bottom: 3em;
      padding-left: 2em;
}

.sect-3-text h5 {
      /* text-transform: uppercase; */
      color: #b71e75;
      /* letter-spacing: 1px; */
      margin-bottom: 0.5em;
}

.sect-3-text h2 {
      font-size: 2rem;
      margin-bottom: 1em;
}

.comment {
      font-size: 1em;
      width: 100%;
      max-width: 650px;
      color: #1f1f1fbf;
      line-height: 1.6;
}

/* ====== GRID SECTION ====== */


.skills {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2em;
      width: 95%;
      margin: auto;
}


.skills-container {
      background-color: #FDEDFC;
      padding: 2em;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      height: 90%;
}

.skills-container .card-3 {
      margin: auto;
}

.skills-container:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.skills-container img {
      width: 8em;
      height: auto;
      object-fit: contain;
}

.skills-container h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: 1em;
}

.skills-container p {
      color: #1f1f1fb8;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.2em;
}

.skills-container a {
      color: #000;
      display: flex;
      align-items: center;
      gap: 0.6em;
      font-weight: 500;
      text-decoration: none;
}

.skills-container a:hover i {
      transform: translateX(4px);
      transition: transform 0.3s ease;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 999px) {
      .skills {
            grid-template-columns: repeat(2, 1fr);
      }
}

/* ====== RESPONSIVE: 700px and below = horizontal scroll ====== */
@media (max-width: 700px) {
      .skills {
            display: flex;
            flex-direction: row;
            overflow-x: auto;
            gap: 1rem;
            padding-bottom: 1rem;
            -webkit-overflow-scrolling: touch;

      }

      .skills-container {
            width: 250px;
            flex: 0 0 auto;
            height: auto;
      }

      .skills::-webkit-scrollbar {
            display: none;
      }
}

/* ====== OTHER RESPONSIVE RULES ====== */
@media (max-width: 600px) {
      .collate {
            width: 95%;
            padding-top: 2em;
      }

      .sect-3-text h2 {
            font-size: 1.6rem;
      }

      .skills-container {
            padding: 1.5em;
      }

      .skills-container img {
            width: 6em;
      }

      .skills-container p {
            font-size: 0.9rem;
      }

      .skills-container a {
            font-size: 0.9rem;
      }
}





/* ==SECTION-YOUR-STRATEGIC-PARTNER-STYLING===== */


/* ========== SECTION 4 (SME BANKING) ========== */

.sect-4 {
      position: relative;
      overflow: hidden;
      padding: 5em 0;
}

.sect-4-container {
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 1em;
      width: 88%;
      margin: auto;

}

.two-fashion-designers {
      width: 100%;
      width: 500px;
      height: auto;
      object-fit: cover;
}

@media (max-width:1052px) {
      .two-fashion-designers {
            width: 400px;
      }
}

/* @media (max-width:1000px) {
      .two-fashion-designers{
            width: 300px;
      }
}  */

.sect-4-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: .5em;
}

.small-market {
      width: 50px;
      margin-bottom: .5em;
}

.sect-4-text h6 {
      margin-top: 1em;
      color: #7a176b;
      font-size: 16px;
      font-weight: 600;
}

.sect-4-text h3 {
      font-size: 20px;
      margin: 0.5em 0;
}

.sect-4-text p {
      color: #1f1f1fb8;
      line-height: 1.6;
      margin-bottom: 1.5em;
      max-width: 700px;
}

.sect-4-text a {
      background-color: #981D87;
      width: 200px;
      align-items: center;
      text-align: center;
      padding: 1em 2em;
      color: #fff;
      border-radius: 40px;
}

/* Dots decoration */
.dots {
      position: absolute;
      opacity: 0.4;
      pointer-events: none;
      transition: all 0.3s ease;
}

.dots1 {
      top: -1em;
      left: 2%;
      width: 100px;
      max-width: 15vw;
}

.dots2 {
      bottom: 0;
      right: 3%;
      width: 100px;
      max-width: 15vw;
      z-index: -1;
}

/* ========== RESPONSIVENESS ========== */

/* ↓ 771px — switch to column */
@media (max-width: 771px) {

      .two-fashion-designers {
            width: 100%;
      }

      .sect-4-text {
            display: none;
            align-items: center;
      }

      .sect-4-text p {
            max-width: 500px;
      }

      .dots1 {
            top: 0;
            left: 5%;
            width: 80px;
      }

      .dots2 {
            bottom: 2em;
            right: 5%;
            width: 80px;
      }
}

/* ↓ 600px — optimize for phones */
@media (max-width: 600px) {
      .sect-4 {
            padding: 3em 1em;
      }

      .sect-4-text h3 {
            font-size: 1.4rem;
      }

      .sect-4-text p {
            font-size: 0.95rem;
      }

      .dots1,
      .dots2 {
            display: none;
            /* hide to prevent lag on small screens */
      }
}




/* SECTION-5-STYLING */




.card-4-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2em;
      width: 86%;
      margin: auto;
}

.card-4 {
      width: 2.5em;
}

.card-4-2 {
      width: 3.5em;
}

.card-4-cont {
      background-color: #ffffff;
      border: 1px solid #0000001d;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
      padding: 2em;
      display: flex;
      gap: 1em;
      flex-direction: column;
      justify-content: center;
      text-align: left;
      height: 90%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-4-cont:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.call-to-action h4 {
      color: #000;
}

.call-to-action h4:hover {
      color: #981D87;
}

.call-to-action p {
      color: #1f1f1f;
}


/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 999px) {
      .card-4-wrapper {
            grid-template-columns: repeat(2, 1fr);
            width: 90%;
      }
}

@media (max-width: 650px) {
      .card-4-wrapper {
            grid-template-columns: 1fr;
            width: 90%;
      }

      .card-4-cont {
            padding: 1.5em;
            /* text-align: center; */
            align-items: center;
      }

      .card-4 {
            width: 3em;
      }

      .card-4-2 {
            width: 4em;
      }

      .call-to-action p {
            font-size: 14px;
      }
}












/* SECT-6-STYLING */


.sect-6 {
      position: relative;
      overflow: hidden;
      padding: 5em 0;
}

.sect-6-container {
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 1em;
      width: 90%;
      margin: auto;

}

.card-gif {
      width: 100%;
      width: 500px;
      height: auto;
      /* object-fit: cover; */
}

@media (max-width:1052px) {
      .card-gif {
            width: 400px;
      }
}

@media (max-width:992px) {
      .card-gif {
            width: 300px;
            display: flex;
            justify-content: right;
      }
}

.sect-6-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
}

.two-cards {
      width: 50px;

}

.card-gif {
      width: 400px;
}

.sect-6-text h6 {
      margin-top: 1em;
      color: #7a176b;
      font-size: 16px;
      font-weight: 600;
}

.sect-6-text h3 {
      font-size: 26px;
      margin: 0.5em 0;
      font-weight: 600;
}

.sect-6-text p {
      margin-top: 1em;
      color: #1f1f1fb8;
      line-height: 1.6;
      margin-bottom: 1.5em;
      max-width: 600px;
}

.sect-6-text a {
      background-color: #981D87;
      width: 200px;
      align-items: center;
      text-align: center;
      padding: 1em 1em;
      color: #fff;
      border-radius: 40px;
}


@media (max-width: 771px) {

      .card-gif {
            width: 100%;
      }

      .sect-6-text {
            /* display: none; */
            align-items: center;
            text-align: start;
      }

      .sect-6-text p {
            max-width: 500px;
      }


}

/* ↓ 600px — optimize for phones */

@media (max-width: 700px) {
      .sect-6-container {
            flex-direction: column;
            align-items: center;
      }

      .sect-6 {
            padding: 3em 1em;
      }

      .sect-6-text {
            align-items: flex-start;
      }

      .sect-6-text h3 {
            font-size: 1.4rem;
      }

      .sect-6-text p {
            font-size: 0.95rem;
      }

      .card-gif {
            width: 300px;
      }

      .sect-6-text a {
            width: 100%;
      }


}




/* ====SECTION-7-STYLING==== */


.sect-7 {
      margin-top: 4em;
}

.market-woman {
      width: 500px;
}


@media (max-width: 992px) {
      .market-woman {
            width: 300px;
      }

}

@media (max-width: 701px) {
      .sect-6-container {
            flex-direction: column-reverse;
            gap: 3em;
      }

      .market-woman {
            width: 80%;
      }
}




/* <!-- =========INVESTORS-RELATIONS-STYLING====== --> */

.investor-relations-section {
      margin-top: 4em;
      background-image: url(./images/background\ image.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #ffffff;
      padding: 60px 0;
      font-family: Arial, sans-serif;
}

.container {
      /* max-width: 1200px; */
      margin: 0 auto;
      padding: 0 15px;
}

/* ====== Layout ====== */
.mini-cont {
      display: flex;
      align-items: center;
      gap: 1em;
      margin-bottom: 2em;
}

.header-content h1 {
      font-size: 20px;
      font-weight: 500;
      color: #eee;
}

.header-content h2 {
      font-size: 2em;
      font-weight: 300;
}

.header-content p {
      font-size: 14px;
      line-height: 1.5;
      width: 600px;
      color: #eee;
}

.financial-data-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 50px;
      width: 50%;
      padding-top: 20px;
      align-self: flex-start;
}

.data-item .value {
      display: block;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 5px;
}

.data-item .label {
      display: block;
      font-size: 0.9rem;
      font-weight: 300;
}

.image-container {
      width: 50%;
      max-height: 400px;
      overflow: hidden;
}

.image-container img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
}

/* ====== Cards Section ====== */
.cards-row {
      display: flex;
      gap: 30px;
      padding-top: 20px;
}

.cards-row a {
      text-decoration: none;
      color: inherit;
      flex: 1;
}

.card-item {
      background-color: #ffffff;
      color: #333333;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /* min-height: 280px; */
}

.card-item h3 {
      font-size: 1.25rem;
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: 600;
}

.card-item p {
      font-size: 0.95rem;
      line-height: 1.4;
      margin-bottom: 15px;
}

/* Hover Effect */
.card-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* ====== Responsive Design ====== */

/* Tablets & below (≤ 900px) */
@media (max-width: 900px) {
      .header-content p {
            width: 100%;
      }

      .financial-data-container,
      .image-container {
            width: 100%;
      }

      /* Horizontal scroll (Instagram-style) */
      .cards-row {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 1.2em;
            padding: 1em 0 1em 1em;
            scroll-behavior: smooth;
            position: relative;
      }

      .cards-row a {
            flex: 0 0 auto;
            scroll-snap-align: start;
      }

      .card-item {
            flex: 0 0 100%;
            /* leaves part of the next card visible */
            min-width: 270px;
            max-width: 300px;
            min-height: 240px;
            /* shorter height */
            height: auto;
      }

      .cards-row::-webkit-scrollbar {
            display: none;
      }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
      .mini-cont {
            flex-direction: column;
            align-items: flex-start;
            gap: 2em;
      }

      .card-item {
            flex: 0 0 80%;
            /* also show a bit of next card */
            min-width: 250px;
            max-width: 270px;
            min-height: 220px;
      }
}







/* <!-- ======SUSTAINABILITY-SECTION-STYLING==== --> */
.title {
      /* width:510px; */
      font-size: 20px !important;
}

.card-6-wrapper {
      margin-top: 3em !important;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2em;
      width: 86%;
      margin: auto;
}

.card-6 {
      width: 2.5em;
}

.card-6-2 {
      width: 3.5em;
}

.card-6-cont {
      background-color: #ffffff;
      border: 1px solid #0000001d;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
      padding: 2em;
      display: flex;
      gap: 1em;
      flex-direction: column;
      justify-content: center;
      text-align: left;
      height: 90%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-6-cont:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.call-to-action h4 {
      color: #000;
}

.call-to-action h4:hover {
      color: #981D87;
}

.call-to-action p {
      color: #1f1f1f;
}


/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 999px) {
      .card-6-wrapper {
            grid-template-columns: repeat(2, 1fr);
            width: 90%;
      }
}

@media (max-width: 650px) {
      .card-6-wrapper {
            grid-template-columns: 1fr;
            width: 90%;
      }

      .card-6-cont {
            padding: 1.5em;
            /* text-align: center; */
            align-items: flex-start;
      }

      .card-6 {
            width: 3em;
      }

      .card-6-2 {
            width: 4em;
      }

      .call-to-action p {
            font-size: 14px;
      }
}



































/* ===========footer======== */
.wema-footer {
      background-image: url(./images/background\ image.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
      padding: 60px 20px 20px;
      font-family: 'Arial', sans-serif;
}

.footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 3rem;
}

/* Left Section */
.footer-left {
      flex: 1 1 250px;
      min-width: 220px;
}

.footer-logo {
      width: 120px;
      margin-bottom: 10px;
}

.cbn-icon {
      width: 22px;
      vertical-align: middle;
      margin-left: 6px;
}

.footer-socials {
      display: flex;
      gap: 15px;
      margin: 15px 0;
}

.footer-socials a {
      color: #fff;
      font-size: 1.2rem;
      transition: color 0.3s;
}

.footer-socials a:hover {
      color: #ffb6ff;
}

.get-app {
      margin: 20px 0 10px;
      font-weight: 600;
}

.app-links img {
      width: 130px;
      margin-right: 10px;
}

.footer-note {
      margin-top: 20px;
      font-size: 0.9rem;
      color: #ddd;
}

/* Right Section */
.footer-right {
      flex: 4 1 750px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
}

.footer-col h4 {
      font-size: 1rem;
      margin-bottom: 12px;
      color: #fff;
      font-weight: 600;
}

.footer-col ul {
      list-style: none;
      padding: 0;
}

.footer-col ul li {
      margin-bottom: 8px;
}

.footer-col ul li a {
      color: #eee;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
}

.footer-col ul li a:hover {
      color: #fff;
}

.contact-info li {
      color: #ddd;
      font-size: 0.9rem;
      margin-bottom: 6px;
}

/* Footer Bottom */
.footer-bottom {
      text-align: center;
      /* padding-top: 30px; */
      /* border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 40px; */
      font-size: 0.9rem;
      width: 100%;
      color: #7a176b;
      background-color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
      .footer-right {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
      }
}

@media (max-width: 768px) {
      .footer-container {
            flex-direction: column;
      }

      .footer-right {
            grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 480px) {
      .footer-right {
            grid-template-columns: 1fr;
      }

      .app-links img {
            width: 110px;
      }
}